home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-434.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  66 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14802);
  11.  script_bugtraq_id(11240);
  12.  script_cve_id("CAN-2004-0750");
  13.  script_version ("$Revision: 1.1 $");
  14.  name["english"] = "RHSA-2004-434: redhat-config-nfs";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19. The remote host is running a version of the redhat-config-nfs package which is 
  20. older than redhat-config-nfs-1.0.13-6.
  21.  
  22. The redhat-config-nfs package includes a graphical user interface for
  23. creating, modifying, and deleting nfs shares.
  24.  
  25. John Buswell discovered a flaw in redhat-config-nfs that could lead to
  26. incorrect permissions on exported shares when exporting to multiple
  27. hosts. This could cause an option such as "all_squash" to not be
  28. applied to all of the listed hosts. The Common Vulnerabilities and
  29. Exposures project (cve.mitre.org) has assigned the name CAN-2004-0750 to
  30. this issue.
  31.  
  32. Additionally, a bug was found that prevented redhat-config-nfs from being
  33. run if hosts didn\'t have options set in /etc/exports.
  34.  
  35. All users of redhat-config-nfs are advised to upgrade to these updated
  36. packages as well as checking their NFS shares directly or via the
  37. /etc/exports file for any incorrectly set options.
  38.  
  39.  
  40. Solution : https://rhn.redhat.com/errata/RHSA-2004-467.html
  41. Risk factor : Medium';
  42.  
  43.  
  44.  script_description(english:desc["english"]);
  45.  
  46.  summary["english"] = "Check for the version of the redhat-config-nfs package";
  47.  script_summary(english:summary["english"]);
  48.  
  49.  script_category(ACT_GATHER_INFO);
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  52.  family["english"] = "Red Hat Local Security Checks";
  53.  script_family(english:family["english"]);
  54.  
  55.  script_dependencies("ssh_get_info.nasl");
  56.  script_require_keys("Host/RedHat/rpm-list");
  57.  exit(0);
  58. }
  59.  
  60.  
  61.  
  62. include("rpm.inc");
  63.  
  64. if ( rpm_check( reference:"redhat-config-nfs-1.0.13-6", release:"RHEL3") ) 
  65.     security_warning(0);
  66.